home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2004 July / APC0407D2.iso / workshop / onlineco / files / ImageMagick-6.0.1-Q16-windows-dll.exe / {app} / include / magick / profile.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-02-21  |  837 b   |  35 lines

  1. /*
  2.   ImageMagick image profile methods.
  3. */
  4. #ifndef _MAGICK_PROFILE_H
  5. #define _MAGICK_PROFILE_H
  6.  
  7. #if defined(__cplusplus) || defined(c_plusplus)
  8. extern "C" {
  9. #endif
  10.  
  11. #include "magick/hashmap.h"
  12. #include "magick/string_.h"
  13.  
  14. MagickExport char
  15.   *GetNextImageProfile(const Image *);
  16.  
  17. MagickExport StringInfo
  18.   *GetImageProfile(const Image *,const char *),
  19.   *RemoveImageProfile(Image *,const char *);
  20.  
  21. extern MagickExport unsigned int
  22.   CloneImageProfiles(Image *,const Image *),
  23.   ProfileImage(Image *,const char *,const unsigned char *,const unsigned long,
  24.     unsigned int),
  25.   SetImageProfile(Image *,const char *,const StringInfo *);
  26.  
  27. extern MagickExport void
  28.   DestroyImageProfiles(Image *),
  29.   ResetImageProfileIterator(const Image *);
  30.  
  31. #if defined(__cplusplus) || defined(c_plusplus)
  32. }
  33. #endif 
  34. #endif
  35.